home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 376_04 / os2tool.003 / UNTIL.TXT < prev    next >
Encoding:
Text File  |  1992-08-14  |  1.1 KB  |  38 lines

  1.                                              UNTIL [DUAL MODE]
  2.      
  3.      NAME UNTIL - Waits until a specified time.
  4.      
  5.      SYNTAX
  6.      
  7.      until time
  8.      
  9.      USAGE
  10.      
  11.      Until is  used to  wait until a given time of the day. It
  12.      support two  time formats.  The first  list the  absolute
  13.      time  in  hh:mm:ss  -format,  where  hh=hour,  mm=minute,
  14.      ss=second. The time is parsed from left to right. That is
  15.      a two  part time  represents hh:mm  and a  one part  time
  16.      represents hours only.
  17.      
  18.      The second  format is given relative to the current time.
  19.      This format is identical to the first format, except that
  20.      it starts with a plus (+).
  21.      
  22.      Until can  be used for example in command scripts to wait
  23.      to a specified time. It is equivalent to the
  24.      at time  null-command, where null is a command which does
  25.      nothing.
  26.      
  27.      EXAMPLES
  28.      
  29.      1) Wait until ten o'clock
  30.      until 10:00
  31.      2) Wait ten seconds
  32.      until +00:00:10
  33.      3) Check the until command.
  34.      runtime until +00:00:10
  35.      
  36.      SEE ALSO
  37.      at
  38.